- /* snmfigcl.cpp by K.Tsuru */
- // function ID = 111
- /**************************************
- SNumber class
- It clears figure[].
- **************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- void SNumber::FigureClear(uint from, uint to) {
- if(to < aTail || from > aHead) return;
- figure.clear(from, to);
- if(to > aTail) {
- while(to < figure.size() && figure(to) == 0) to++;
- if(to < figure.size()) aTail = to;
- else SetZero();
- }
- }
snmfigcl.cpp : last modifiled at 2003/04/13 13:34:36(466 bytes)
created at 2016/04/11 11:36:47
The creation time of this html file is 2017/10/27 10:59:17 (Fri Oct 27 10:59:17 2017).